// left_channel  = 32768L + (long)play_buffer[index];   // Convert signed  left audio channel to unsigned.
// rigth_channel = 32768L + (long)play_buffer[index+1]; // Convert signed right audio channel to unsigned.
// left_channel = (left_channel + rigth_channel) / 2;   // Merge both channels.  Worse sound! Why?
// ring_buffer[write_index++] = (uchar)(left_channel / 256); // Convert left channel to 8 bit mono sound.

/*--------------------------------------------------------------------------------------------------------------*/
// if (info_write) { // Print out info to insure frequency changes are correct. Setup periodic timer.
// if (debug) dprintf("Sampling Rate %d Frame Length %d Frame Rate %d\n", sampling_rate, frame_length, frame_rate);
// if (debug) dprintf("Data Size = %d \n",play_length);
// info_write = false; } // Insures timer is only started once.
/*--------------------------------------------------------------------------------------------------------------*/
